home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / rename.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  137 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. #include <proto/dos.h>
  4.  
  5. int rename(const char *old,const char *new)
  6. {
  7.     return(Rename((STRPTR)old,(STRPTR)new));
  8. }
  9.